home *** CD-ROM | disk | FTP | other *** search
/ Chip 1997 March / CHIP Mart 1997.iso / SurfCam / SURFCAM.Z / FAN10I.M3 < prev    next >
Text File  |  1996-04-01  |  4KB  |  133 lines

  1. name Fanuc 10M Incremental
  2.  
  3. % 00
  4. / 00
  5. O >4
  6. N >4
  7. G >2
  8. X ->3.>4
  9. Y ->3.>4
  10. Z ->3.>4
  11. A ->3.>4
  12. I ->3.>4
  13. J ->3.>4
  14. K ->3.>4
  15. Q ->3.>4
  16. R ->3.>4
  17. P >40
  18. F >3.1
  19. H >2
  20. D >2
  21. T >2
  22. M >2
  23. S >4
  24.  
  25. ModalLetters X Y Z F R                # List of letters that are modal    
  26.  
  27. ModalGs 0 1 2 3 73 74 76 80 81 82 83 84 85  # List of g codes that are modal    
  28.  
  29. Sequence#s N 0 1 1                    # Char, freq, incr & start          
  30. First#? N                             # Y or N  'Output 1st sequence no.  
  31. Last#? N                              # Y or N  'Output last sequence no. 
  32.  
  33. HCode X                               # X or X U  'Horizontal char.       
  34. VCode Y                               # Y or Y V  'Vertical char.         
  35. Dcode Z                               # Depth char.                       
  36. FeedCode F                            # Feed rate char.                   
  37.  
  38. Comment ( )                           # Begin End comment char.           
  39.  
  40. Spindle 3 4 5                         # Cw, ccw & stop m codes            
  41. Coolant 8 9 7                         # On, Off & Mist m codes            
  42. DComp 41 42 40                        # Left, Right & Cancel m codes      
  43. LComp 43 49                           # On & Off codes                    
  44.  
  45. Feed G1                             # Linear move                       
  46. Rapid G0                            # Rapid positioning word            
  47. Cw G2                               # Circular move clockwise           
  48. Ccw G3                              # Circular move counter clockwise   
  49. Inc/Abs G 91 90                       # Inc & Abs char. & values          
  50. CtrCode I J                           # I J or R or I J K L               
  51. Helical? Y
  52.  
  53. Spaces? Y                             # Y or N  'Spaces between words     
  54. Incremental? N                        # Y or N  'Inc or abs output        
  55. CtrIncremental? Y                     # Y or N  'Inc or abs I & J         
  56. ByQuadrants? N                        # Y or N  'Break arcs at quadrants  
  57.  
  58. UppercaseComments? Y                  # Y or N 'Require uppercase comments
  59.  
  60. Drill                                 # Drilling canned/manual cycle      
  61. G81 X[H] Y[V] Z[D] R[Vclear] F[FRate]
  62. end cancel
  63.  
  64. Peck                                  # Pecking canned/manual cycle       
  65. G83 X[H] Y[V] Z[D] Q[VBite] R[Vclear] F[FRate]
  66. end cancel
  67.  
  68. Tap                                   # Tapping canned/manual cycle       
  69. G84 X[H] Y[V] Z[D] R[Vclear] F[Frate] Q[VBite]
  70. end cancel
  71.  
  72. LTap                                  # Left handed tapping cycle         
  73. G74 X[H] Y[V] Z[D] R[Vclear] F[Frate] Q[VBite]
  74. end cancel
  75.  
  76. Ream                                  # Reaming canned/manual cycle       
  77. G85 X[H] Y[V] Z[D] R[Vclear] F[FRate]
  78. end cancel
  79.  
  80. Bore                                  # Boring canned/manual cycle        
  81. G86 X[H] Y[V] Z[D] R[Vclear] F[FRate]
  82. end cancel
  83.  
  84. Back                                  # Back boring canned/manual cycle   
  85. G87 X[H] Y[V] Z[D] R[Vclear] F[FRate]
  86. end cancel
  87.  
  88. Cancel                                # Cancel a canned/manual cycle      
  89. G80
  90. end
  91.  
  92. StartCode                             # Start of the program              
  93. %0
  94. O[Program#]
  95. G90 G80 G40 G17
  96. End
  97.  
  98. 1stToolChange                         # First tool change                 
  99. T[Tool] M6
  100. M[Direct] S[Speed]
  101. G0 G[Work] X[H] Y[V]
  102. G43 Z[D] H[Lcomp]
  103. M[Cool]
  104. G91
  105. End
  106.  
  107. Infeed                                # Enable cutter comp                
  108. G[Side] X[H] Y[V] D[DComp] F[FRate]
  109. end
  110.  
  111. Outfeed                               # Disable cutter comp               
  112. G1 G40 X[H] Y[V]
  113. end
  114.  
  115. ToolChange                            # Secondary tool changes            
  116. G90 G80 G40 G17
  117. N[Block] T[Tool] M6
  118. M[Direct] S[Speed]
  119. G0 X[H] Y[V]
  120. G43 Z[D] H[Lcomp]
  121. M[Cool]
  122. G91
  123. End
  124.  
  125. EndCode                               # End of the program                
  126. G90 G0 G49 Z0
  127. M6 T[Tool1]
  128. X0 Y0
  129. M30
  130. %0
  131. End
  132.  
  133.